/* Vánoční ikony – statické zvonky v rohách s velikostí 200px (bez animace) */
@media (min-width: 1025px) {
    .home-age-filter.christmas-mode {
        position: relative !important;
    }

    .home-age-filter.christmas-mode::before {
        content: '' !important;
        position: absolute !important;
        top: 10px !important;  /* Přizpůsob polohu (např. top: 0; pro horní okraj) */
        left: 10px !important;
        width: 200px !important;  /* Velikost 200px – uprav na menší (např. 150px), pokud bude příliš velká */
        height: 200px !important;
        background-image: url('https://www.hrackovna.cz/user/documents/upload/uprava%20sablony/zvonek_Vanoce_l.png') !important;
        background-size: contain !important;
        background-repeat: no-repeat !important;
        z-index: 10 !important;
    }

    .home-age-filter.christmas-mode::after {
        content: '' !important;
        position: absolute !important;
        top: 10px !important;  /* Přizpůsob polohu */
        right: 10px !important;
        width: 200px !important;  /* Velikost 200px – uprav na menší (např. 150px), pokud bude příliš velká */
        height: 200px !important;
        background-image: url('https://www.hrackovna.cz/user/documents/upload/uprava%20sablony/zvonek_Vanoce_r.png') !important;
        background-size: contain !important;
        background-repeat: no-repeat !important;
        z-index: 10 !important;
    }
}

/* Novoroční ohňostroj – s explicitním skrýváním zvonků, aby se nezobrazovaly */
@media (min-width: 1025px) {
    .home-age-filter.new-year-mode {
        position: relative !important;
        overflow: hidden !important;
        background-color: rgba(0, 0, 0, 0.1) !important;
    }

    /* Skrývání zvonků v new-year-mode (pokud by se omylem objevily) */
    .home-age-filter.new-year-mode::before,
    .home-age-filter.new-year-mode::after {
        content: none !important;  /* Skrývá zvonky – žádný obsah */
        display: none !important;
    }

    /* Ohňostroj – nastavení pro ::before (přesunuto pro vyšší prioritu) */
    .home-age-filter.new-year-mode::before {
        content: '' !important;  /* Přepisuje skrývání jen pro tento selektor */
        display: block !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background-image: url('https://www.hrackovna.cz/user/documents/upload/uprava%20sablony/ohnostroj.svg') !important;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        opacity: 0.6 !important;
        pointer-events: none !important;
        z-index: -1 !important;
        animation: fireworks-svg 4s ease-in-out infinite !important;
    }

    @keyframes fireworks-svg {
        0% { opacity: 0.4; transform: scale(1) translateY(0); }
        50% { opacity: 0.8; transform: scale(1.1) translateY(-5%); }
        100% { opacity: 0.4; transform: scale(1) translateY(0); }
    }
}
